home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Tools - Objects / Macintosh Programmer’s Workshop / MPW QR4 / SADE 1.3b1 / SADE Worksheet < prev    next >
Text File  |  1991-04-25  |  1KB  |  23 lines

  1. #    Symbolic Application Debugging Environment    1.3
  2. #
  3. #    Copyright Apple Computer, Inc. 1987-1990
  4. #    All rights reserved.
  5.  
  6. ###############################################################################
  7.  
  8. Help        # Get a list of help topics; or use SADE Help menu command in Find menu.
  9.  
  10. # When you compile and link your application, specify the -sym on option to create
  11. # the file containing symbol information (.SYM) that SADE requires for debugging. 
  12.  
  13. # Identify the target application to debug and its symbol file:
  14.     Directory 'hd:SADE:SADE 1.3 Tutorials:CExamples:C Tutorial 1'
  15. #    Sourcepath 'pathname1','pathname2'    # This command is not necessary with Sample1
  16.                                         # because its source is in one directory. Use
  17.                                         # SourcePath only if your source files are in 
  18.                                         # multiple directories.
  19.     Target 'Sample1'    # assumes symbol file is 'Sample1.SYM'
  20.  
  21. # You will see that Target not only identifies the application but launches it, opens
  22. # the source file, and breaks at the first statement of the main program.
  23.